home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / hf^k-4.dms / in.adf / Rexx.Lha / librarian.srx < prev    next >
Encoding:
Text File  |  1996-11-10  |  590 b   |  24 lines

  1. /* 
  2.     librarian.srx
  3.     
  4.     Builds a linked library from the StormLibrarian document
  5.         
  6.     © 1996 HAAGE & PARTNER GmbH
  7.     
  8.     $VER librarian.srx 1.0 (4.11.96)
  9.     
  10.     Hint: StormLibrarian sets the dependencies (the object files) and the object file
  11.     (the linker library) automatically.
  12.     
  13. */
  14.  
  15. /* Don't forget the point '.' at the end      \/        */
  16. PARSE ARG '"' filename '"' '"' projectname '"' .
  17.  
  18. SAY ""
  19. SAY "StormLibrarian Script ©1996 HAAGE & PARTNER GmbH"
  20. SAY "Build linker library from "||filename||"."
  21.  
  22. /* compile */
  23. ADDRESS COMMAND "StormC:StormSYS/StormLibrarian "||filename||" BUILD MAKESCRIPT"
  24.